.MangaHero { display: flex; flex-direction: column; justify-content: center; } .TitleContainer { display: flex; justify-content: space-between; align-items: center; padding: 5px; backdrop-filter: blur(5px); } .TitleContainer p { font-family: "Quicksand"; font-size: 40px; font-weight: 900; } .TitleContainer img { border-radius: 10px; margin-left: 5px; } .MangaDescription { color: white; font-family: "Atkinson Hyperlegible"; text-align: center; } .MangaDescription span { margin: 10px; color: var(--soft-purple); } .MangaRatings { display: flex; justify-content: center; margin-top: -10px; } .MangaRatings span { margin-right: 2px; margin-left: 2px; color: var(--light-green); } .MangaGenre { background-color: #5f5f5f5d; padding: 2px; border-radius: 5px; cursor: pointer; } .Character { display: flex; flex-direction: row; overflow-x: auto; } .Character::-webkit-scrollbar { height: 5px; } .Character::-webkit-scrollbar-thumb { background-color: #B799FF; border-radius: 5px; } .CharacterEntry { margin: 5px; } .CharacterEntry p { text-align: center; color: white; } .CharacterEntry img { border-radius: 10px; } /* Chapters Buttons */ .ChapterContainer { width: 100%; margin: 20px auto; text-align: center; height: 400px; overflow-y: auto; } .ChapterContainer::-webkit-scrollbar { width: 5px; } .ChapterContainer::-webkit-scrollbar-thumb { /* background-color: #949494; */ background-color: #B799FF; border-radius: 5px; } .ChapterContainer button { width: 130px; height: auto; padding: 10px; margin: 5px; border-radius: 5px; font-size: 16px; border: none; outline: none; font-family: "Lato"; background-color: #f8f6e3dc; cursor: pointer; transition: transform 0.2s linear; } .ChapterContainer button p { font-family: "Quicksand"; margin: 2px; } .ChapterContainer button:hover { background-color: #97E7E1; } .ChapterContainer button:focus { opacity: 0.7; transition: transform 0.2s linear; background-color: var(--pastel-red); transform: scale(0.9); } @media screen and (max-width: 768px) { .MangaInfoContainer { max-width: 100%; } .TitleContainer p { font-size: 28px; } .ChapterContainer button { width: 120px; } .ChapterContainer button p { font-size: 14px; } }